home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NOVA - For the NeXT Workstation
/
NOVA - For the NeXT Workstation.iso
/
SourceCode
/
DeveloperLabs
/
Lab2
/
Solution
/
CompositeView.h
< prev
next >
Wrap
Text File
|
1989-06-15
|
537b
|
29 lines
#import <appkit/View.h>
@interface CompositeView:View
{
id source, destination;
NXRect sRect, dRect, rRect;
int operator, sourcePicture;
float sourceGray, destGray, sourceAlpha, destAlpha;
}
+newFrame:(const NXRect *)tF;
// Target-action methods
-setSourceGray:sender;
-setDestGray:sender;
-setSourceAlpha:sender;
-setDestAlpha:sender;
-setSourcePicture:sender;
-setOperator:sender;
// Other methods (some internal)
-drawSource;
-drawDestination;
-drawSelf:(NXRect *)r :(int)count;
-speedyDraw;
-(int)operator;
@end